type compress/flate.byLiteral
7 uses
compress/flate (current package)
huffman_code.go#L22: lns byLiteral // stored to avoid repeated allocation in generate
huffman_code.go#L310: type byLiteral []literalNode
huffman_code.go#L312: func (s *byLiteral) sort(a []literalNode) {
huffman_code.go#L313: *s = byLiteral(a)
huffman_code.go#L317: func (s byLiteral) Len() int { return len(s) }
huffman_code.go#L319: func (s byLiteral) Less(i, j int) bool {
huffman_code.go#L323: func (s byLiteral) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |